home *** CD-ROM | disk | FTP | other *** search
/ You're the Director / You're The Director.iso / pc / pcf / di.dir / 00265.ls < prev    next >
Encoding:
Text File  |  1995-10-08  |  876 b   |  32 lines

  1. on mouseUp
  2.   if (the frame < 22) and (the visible of sprite 48 = 1) then
  3.     set the movieRate of sprite 48 to 0
  4.     set mtime to the movieTime of sprite 48
  5.     set the visible of sprite 48 to 0
  6.     updateStage()
  7.     play frame "HELP"
  8.     updateStage()
  9.     set the visible of sprite 48 to 1
  10.     set the movieTime of sprite 48 to mtime
  11.     updateStage()
  12.     set the movieRate of sprite 48 to 1
  13.     updateStage()
  14.   else
  15.     if the visible of sprite 48 = 1 then
  16.       set the movieRate of sprite 48 to 0
  17.       set the visible of sprite 48 to 0
  18.       set mtime to the movieTime of sprite 48
  19.       updateStage()
  20.       play frame "HELP"
  21.       updateStage()
  22.       set the visible of sprite 48 to 1
  23.       set the movieTime of sprite 48 to mtime
  24.       updateStage()
  25.       set the movieRate of sprite 48 to 1
  26.       updateStage()
  27.     else
  28.       play frame "HELP"
  29.     end if
  30.   end if
  31. end
  32.